Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 9992
b: refs/heads/master
c: c086f28
h: refs/heads/master
v: v3
  • Loading branch information
Ben Dooks authored and Russell King committed Oct 18, 2005
1 parent c5cbf03 commit 076b5bb
Show file tree
Hide file tree
Showing 13 changed files with 5 additions and 88 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: ace7c769378b9fb2f1fd2c60c04ba3591a6a5af5
refs/heads/master: c086f282c01d7e5a887c3f7b190520538267f12e
30 changes: 0 additions & 30 deletions trunk/.gitignore

This file was deleted.

5 changes: 4 additions & 1 deletion trunk/arch/arm/mach-s3c2410/clock.c
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,10 @@ struct clk *clk_get(struct device *dev, const char *id)
struct clk *clk = ERR_PTR(-ENOENT);
int idno;

idno = (dev == NULL) ? -1 : to_platform_device(dev)->id;
if (dev == NULL || dev->bus != &platform_bus_type)
idno = -1;
else
idno = to_platform_device(dev)->id;

down(&clocks_sem);

Expand Down
3 changes: 0 additions & 3 deletions trunk/drivers/char/.gitignore

This file was deleted.

4 changes: 0 additions & 4 deletions trunk/drivers/pci/.gitignore

This file was deleted.

2 changes: 0 additions & 2 deletions trunk/drivers/serial/8250_pnp.c
Original file line number Diff line number Diff line change
Expand Up @@ -276,8 +276,6 @@ static const struct pnp_device_id pnp_dev_table[] = {
{ "SUP1620", 0 },
/* SupraExpress 33.6 Data/Fax PnP modem */
{ "SUP1760", 0 },
/* SupraExpress 56i Sp Intl */
{ "SUP2171", 0 },
/* Phoebe Micro */
/* Phoebe Micro 33.6 Data Fax 1433VQH Plug & Play */
{ "TEX0011", 0 },
Expand Down
7 changes: 0 additions & 7 deletions trunk/drivers/video/logo/.gitignore

This file was deleted.

6 changes: 0 additions & 6 deletions trunk/lib/.gitignore

This file was deleted.

4 changes: 0 additions & 4 deletions trunk/scripts/.gitignore

This file was deleted.

3 changes: 0 additions & 3 deletions trunk/scripts/basic/.gitignore

This file was deleted.

16 changes: 0 additions & 16 deletions trunk/scripts/kconfig/.gitignore

This file was deleted.

4 changes: 0 additions & 4 deletions trunk/scripts/mod/.gitignore

This file was deleted.

7 changes: 0 additions & 7 deletions trunk/usr/.gitignore

This file was deleted.

0 comments on commit 076b5bb

Please sign in to comment.